PyTure Docs

Installation

Get PyTure up and running in your environment.

PyPI

Latest package info and downloads.

GitHub

Repository health and activity.

Requirements

Python Python 3.8+
Cross Platform Cross-platform: Windows, macOS, Linux

Install with pip

The recommended way to install PyTure is using pip:

bash
pip install pyture

Development Installation

To install from source for development:

bash
git clone https://github.com/pyture/pyture.git
cd pyture
pip install -e .
ℹ️
Note: For the best experience, we recommend using a virtual environment to avoid conflicts with other packages.

Installation in a Virtual Environment

To avoid dependency conflicts, create a virtual environment and install PyTure inside it:

bash
python -m venv venv
source venv/bin/activate   # macOS/Linux
venv\Scripts\activate      # Windows
pip install pyture